home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / shape.h < prev    next >
C/C++ Source or Header  |  1979-12-31  |  520b  |  29 lines

  1. /* --------------------------------- shape.h -------------------------------- */
  2.  
  3. /* This is part of the flight simulator 'fly8'.
  4.  * Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  5. */
  6.  
  7. /* Object shape header.
  8. */
  9.  
  10. #ifndef FLY8_SHAPE
  11. #define FLY8_SHAPE
  12.  
  13. #define V_METERS    2
  14. #define V_FINE        1
  15.  
  16. #define V_EOF        0
  17. #define V_MOVE        1
  18. #define V_DRAW        2
  19. #define V_DUP        3
  20.  
  21. #define SH_G        0x0001
  22. #define SH_HIT        0x0002
  23. #define SH_BEHIT    0x0004
  24. #define SH_LOCALSIM    0x0008
  25. #define SH_FINE        0x0010
  26. #define SH_DYNVERTEX    0x0020
  27.  
  28. #endif
  29.